home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / The World of Computer Software.iso / dfpp01.zip / TESTAPPL.H < prev    next >
C/C++ Source or Header  |  1992-11-21  |  426b  |  20 lines

  1. // ---------- testappl.h
  2.  
  3. #define APWND (void (DFWindow::*)()) &TestAppl
  4.  
  5. class TestAppl : public Application    {
  6. public:
  7.     TestAppl(char *ttl, MenuBarItem *Menu) : Application(ttl, Menu)
  8.         { /* null */ }
  9.     void Exit();
  10.     void BuildListBox();
  11.     void BuildTextBox();
  12.     void BuildEditBox();
  13.     void BuildPushButton();
  14.     void ButtonPushed();
  15.     void BuildCheckBox();
  16.     void BuildRadioButton();
  17.     void BuildInsertMode();
  18. };
  19.  
  20.